home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Magazin: Amiga-CD 1996 September & October
/
Amiga-CD 1996 #9-10.iso
/
aminet
/
7-96
/
lha-archive
/
aspell.lha
/
AlphaSpell
/
REXX
/
convert.asp
next >
Wrap
Text File
|
1996-05-01
|
347b
|
17 lines
/* convert.asp - Converts AlphaSpell V dictionaries to AlphaSpell IV */
ARG name temp
OPTIONS RESULTS
"DUMP" name temp
IF RC == 0 THEN DO
ADDRESS COMMAND "fsort temp.tmd temp!.tmd"
ADDRESS COMMAND "uniq <temp!.tmd >temp.tmd"
CALL Delete ("temp!.tmd")
"DUMP temp.tmd" name
IF RC == 0 THEN CALL Delete("temp.tmd")
END
"QUIT"